AttributeError: module pandas has no attribute read site:stackoverflow.com

25

tf.compat.v1.GraphDef()   # -> instead of tf.GraphDef()
tf.compat.v2.io.gfile.GFile()   # -> instead of tf.gfile.GFile()
import pandas as pd

df = pd.read_csv('FBI-CRIME11.csv')

print(df.head())
import pandas as pd
df = pd.read_csv('canada_per_capita_income.csv')

Comments

Submit
0 Comments